DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews Namespace / ViewRowCollection Class / GetItemProperties(PropertyDescriptor[]) Method
An array of System.ComponentModel.PropertyDescriptor objects to find in the collection as bindable. Can be null.

In This Topic
    GetItemProperties(PropertyDescriptor[]) Method
    In This Topic
    Returns the collection of properties available in the view element type to programmatic access through ViewRow and to data binding.
    Syntax
    'Declaration
     
    Public Function GetItemProperties( _
       ByVal listAccessors() As PropertyDescriptor _
    ) As PropertyDescriptorCollection
    public PropertyDescriptorCollection GetItemProperties( 
       PropertyDescriptor[] listAccessors
    )

    Parameters

    listAccessors
    An array of System.ComponentModel.PropertyDescriptor objects to find in the collection as bindable. Can be null.
    Remarks

    If listAccessors is null, this method returns the collection of properties of the view element type.

    Non-null listAccessors is used for obtaining property collection for hierarchical binding: If listAccessors contains a single element, then it is used to find an object-valued property in the element type, and the collection of properties of the type of that object-valued property is returned. If listAccessors contains two elements, then its second element is used to find an object-valued property in the collection of properties on the previous level, and so on, see ITypedList.GetItemProperties for more information.

    See Also